home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 09-13.BAS < prev    next >
BASIC Source File  |  1991-06-20  |  436b  |  28 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. NewMode = FGbestmode(320,200,1)
  6. IF NewMode < 0 OR NewMode = 12 THEN
  7.    PRINT "This program requires a 320 x 200 color graphics mode."
  8.    STOP
  9. END IF
  10.  
  11. Status = SETMEM(-64000)
  12.  
  13. OldMode = FGgetmode
  14. FGsetmode NewMode
  15.  
  16. FGmove 0, 199
  17. FGdispfile "coral.spr"+CHR$(0), 320, 0
  18. FGwaitkey
  19.  
  20. FGerase
  21. FGdispfile "coral.ppr"+CHR$(0), 320, 1
  22. FGwaitkey
  23.  
  24. FGsetmode OldMode
  25. FGreset
  26.  
  27. END
  28.